home *** CD-ROM | disk | FTP | other *** search
/ PC Format 3 (5.25") / PC Format - Issue 3 December 1991 - Disk 1.ima / PCF.BAT < prev    next >
DOS Batch File  |  1994-08-29  |  1KB  |  65 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. nocurs
  6. disp pcfiss3 1
  7. getkey svx
  8.  
  9. if errorlevel 3 goto quit
  10. if errorlevel 2 goto vcopy
  11. if errorlevel 1 goto strike2
  12.  
  13. :strike2
  14. s2
  15. goto start
  16.  
  17. :vcopy
  18. disp pcfiss33 1
  19. getkey abcm
  20. if errorlevel 4 goto start
  21. if errorlevel 3 goto dskc
  22. if errorlevel 2 goto dskb
  23. if errorlevel 1 goto dska
  24.  
  25. :dska
  26. cd vcopy
  27. cls
  28. echo Please insert a blank disk in drive A:
  29. pause
  30. copy *.* a:
  31. cd..
  32. goto start 
  33.  
  34. :dskb
  35. cd vcopy
  36. cls
  37. echo Please insert a blank disk in drive A:
  38. echo Also note: This will work with single floppy drive machines,
  39. echo just follow the DOS commands.
  40. pause
  41. copy *.* b:
  42. cd..
  43. goto start 
  44.  
  45. :dskc
  46. cd vcopy
  47. cls
  48. echo This will create a directory on you hard drive called UTILS.
  49. echo Don't panic if your computer tells you that it can't create the
  50. echo directory. It just means that your computer already has a directory
  51. echo called UTILS.
  52. pause
  53. md c:\utils
  54. pause
  55. copy *.* c:\utils
  56. cd..
  57. goto start 
  58.  
  59. :quit
  60. cls
  61. echo thankyou for using the PCF Cover Disk.
  62. cd..
  63. pause
  64.  
  65.